Credo AI Vendors API

Operations related to vendors and their questionnaires

Operations 23

GET /vendors/{vendor_id}/model_links #
POST /vendors/{vendor_id}/model_links #
GET /vendors/{vendor_id}/files #
POST /vendors/{vendor_id}/files #
GET /vendors #
POST /vendors #
DELETE /vendors/{id} #
GET /vendors/{id} #
PATCH /vendors/{id} #
DELETE /vendors/{vendor_id}/model_links/{id} #
DELETE /vendors/{vendor_id}/questionnaires/{id} #
PATCH /vendors/{vendor_id}/questionnaires/{id} #
GET /vendors/{vendor_id}/evidences #
DELETE /vendors/{vendor_id}/files/{id} #
DELETE /vendors/{vendor_id}/evidences/{id} #
GET /vendors/{vendor_id}/questionnaire_sections/{section_id} #
POST /vendors/{vendor_id}/questionnaire_sections/{section_id}/tasks #
GET /vendors/{vendor_id}/questionnaire_sections/{section_id}/evidences #
POST /vendors/{vendor_id}/questionnaire_sections/{section_id}/evidences #
GET /vendors/{vendor_id}/questionnaires #
POST /vendors/{vendor_id}/questionnaires #
GET /vendors/{vendor_id}/custom_fields #
PATCH /vendors/{vendor_id}/custom_fields #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/credo-ai-vendors-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

credo-ai-vendors-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Credo AI server API
  title: Credo AI server Vendors API
servers:
- url: /api/v2/credoai
tags:
- name: vendors
  description: Operations related to vendors and their questionnaires
paths:
  /vendors/{vendor_id}/model_links:
    get:
      description: Retrieve a list of model links associated with a specific vendor.
      operationId: CredoAIWeb.API.V2.Vendor.ModelLinkController.index
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ModelVendorLinksResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
    post:
      description: Create a new model link for a specific vendor.
      operationId: CredoAIWeb.API.V2.Vendor.ModelLinkController.create
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Created
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ModelVendorLinkResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/ModelVendorLinkCreateRequest'
        description: The attributes for the new model link.
  /vendors/{vendor_id}/files:
    get:
      description: Retrieve a list of files associated with a specific vendor.
      operationId: CredoAIWeb.API.V2.Vendor.FileController.index
      parameters:
      - description: The unique ID of the vendor whose files are being retrieved.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorFilesResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
    post:
      description: Upload a new file for a specific vendor.
      operationId: CredoAIWeb.API.V2.Vendor.FileController.create
      parameters:
      - description: The unique ID of the vendor for whom the file is being created.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorFileResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/VendorFileCreateRequest'
        description: The attributes of the file to be created.
  /vendors:
    get:
      description: Retrieve a list of all vendors.
      operationId: CredoAIWeb.API.V2.VendorController.index
      parameters:
      - description: page after cursor
        in: query
        name: page[after]
        required: false
        schema:
          type: string
      - description: page before cursor
        in: query
        name: page[before]
        required: false
        schema:
          type: string
      - description: page limit
        in: query
        name: page[limit]
        required: false
        schema:
          type: integer
      - description: name filter type
        in: query
        name: filter[name][type]
        required: false
        schema:
          type: string
      - description: name filter value
        in: query
        name: filter[name][value]
        required: false
        schema:
          type: string
      - description: sort options
        in: query
        name: sort
        required: false
        x-example: -inserted_at
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorsResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
    post:
      description: Create a new vendor with the provided attributes.
      operationId: CredoAIWeb.API.V2.VendorController.create
      responses:
        '201':
          description: Created
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/VendorCreateRequest'
        description: Attributes for the new vendor.
  /vendors/{id}:
    delete:
      description: Remove a vendor from the system using its unique ID.
      operationId: CredoAIWeb.API.V2.VendorController.delete
      parameters:
      - description: Unique ID of the vendor to be deleted.
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
    get:
      description: Fetch detailed information about a specific vendor by ID.
      operationId: CredoAIWeb.API.V2.VendorController.show
      parameters:
      - description: user,use_cases,questionnaires,models
        in: query
        name: include
        required: false
        x-example: user,use_cases,questionnaires,models
        schema:
          type: string
      - description: Unique ID of the vendor.
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
    patch:
      description: Update the details of an existing vendor identified by ID.
      operationId: CredoAIWeb.API.V2.VendorController.update
      parameters:
      - description: Unique ID of the vendor.
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/VendorUpdateRequest'
        description: Attributes to update for the vendor.
  /vendors/{vendor_id}/model_links/{id}:
    delete:
      description: Delete a specific model link associated with a vendor.
      operationId: CredoAIWeb.API.V2.Vendor.ModelLinkController.delete
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      - description: The unique ID of the model link to be deleted.
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
  /vendors/{vendor_id}/questionnaires/{id}:
    delete:
      description: Remove a specific questionnaire from a vendor's collection.
      operationId: CredoAIWeb.API.V2.Vendor.QuestionnaireController.delete
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      - description: The unique ID of the questionnaire to be deleted.
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
    patch:
      description: Update the version of a specific questionnaire for a vendor.
      operationId: CredoAIWeb.API.V2.Vendor.QuestionnaireController.update
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      - description: The unique ID of the questionnaire to be updated.
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorQuestionnaireResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/VendorQuestionnaireUpdateRequest'
        description: The attributes for updating the questionnaire.
  /vendors/{vendor_id}/evidences:
    get:
      description: Retrieve a list of active evidences associated with a specific vendor.
      operationId: CredoAIWeb.API.V2.Vendor.EvidenceController.index
      parameters:
      - description: type match filter
        in: query
        name: filter[type]
        required: false
        schema:
          type: string
      - description: sort options
        in: query
        name: sort
        required: false
        x-example: -inserted_at
        schema:
          type: string
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorEvidencesResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
  /vendors/{vendor_id}/files/{id}:
    delete:
      description: Delete a specific file associated with a vendor by its unique ID.
      operationId: CredoAIWeb.API.V2.Vendor.FileController.delete
      parameters:
      - description: The unique ID of the vendor whose file is to be deleted.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      - description: The unique ID of the file to be deleted.
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
  /vendors/{vendor_id}/evidences/{id}:
    delete:
      description: Deactivate a specific evidence for the given vendor.
      operationId: CredoAIWeb.API.V2.Vendor.EvidenceController.delete
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      - description: The unique ID of the evidence to be deactivated.
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
  /vendors/{vendor_id}/questionnaire_sections/{section_id}:
    get:
      description: Retrieves a specific questionnaire section for a vendor
      operationId: CredoAIWeb.API.V2.Vendor.Questionnaire.SectionController.show
      parameters:
      - description: The unique ID of the vendor
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      - description: The unique ID of the questionnaire section
        in: path
        name: section_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorQuestionnaireSectionResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
  /vendors/{vendor_id}/questionnaire_sections/{section_id}/tasks:
    post:
      description: Creates a new task for a vendor questionnaire section
      operationId: CredoAIWeb.API.V2.Vendor.Questionnaire.SectionController.create_task
      parameters:
      - description: The unique ID of the vendor
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      - description: The unique ID of the questionnaire section
        in: path
        name: section_id
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Created
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/TaskResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/TaskResource'
        description: The task creation details
  /vendors/{vendor_id}/questionnaire_sections/{section_id}/evidences:
    get:
      description: Retrieves a list of evidences associated with a specific vendor's questionnaire section.
      operationId: CredoAIWeb.API.V2.Vendor.Questionnaire.SectionEvidenceController.index
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      - description: The unique ID of the questionnaire section.
        in: path
        name: section_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorEvidencesResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
    post:
      description: Creates a new evidence entry for a specific question within a vendor's questionnaire section.
      operationId: CredoAIWeb.API.V2.Vendor.Questionnaire.SectionEvidenceController.create
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      - description: The unique ID of the questionnaire section.
        in: path
        name: section_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorEvidenceResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/VendorQuestionnaireSectionEvidenceCreateRequest'
        description: The attributes of the evidence to be created.
  /vendors/{vendor_id}/questionnaires:
    get:
      description: Retrieve a list of all questionnaires associated with a specific vendor.
      operationId: CredoAIWeb.API.V2.Vendor.QuestionnaireController.index
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorQuestionnairesResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
    post:
      description: Create a new questionnaire for a specific vendor.
      operationId: CredoAIWeb.API.V2.Vendor.QuestionnaireController.create
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      responses:
        '201':
          description: Created
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorQuestionnaireResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/VendorQuestionnaireCreateRequest'
        description: The attributes for the new questionnaire.
  /vendors/{vendor_id}/custom_fields:
    get:
      description: Retrieve a list of all custom fields associated with a specific vendor.
      operationId: CredoAIWeb.API.V2.Vendor.CustomFieldController.index
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorCustomFieldsResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
    patch:
      description: Update the value of a specific custom field for a vendor.
      operationId: CredoAIWeb.API.V2.Vendor.CustomFieldController.update_one
      parameters:
      - description: The unique ID of the vendor.
        in: path
        name: vendor_id
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/VendorCustomFieldResponse'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/AuthError'
        '403':
          description: Forbidden
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: Not Found
          content:
            application/vnd.api+json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
      security:
      - Bearer: []
      summary: ''
      tags:
      - vendors
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/VendorCustomFieldUpdateOneRequest'
        description: The attributes of the custom field to be updated.
components:
  schemas:
    VendorCustomFieldsResponse:
      description: A collection of [VendorCustomFieldResource](#vendorcustomfieldresource)
      properties:
        data:
          description: Content with [VendorCustomFieldResource](#vendorcustomfieldresource) objects
          items:
            $ref: '#/components/schemas/VendorCustomFieldResource'
          type: array
      required:
      - data
      type: object
    VendorEvidencesResponse:
      description: A collection of [VendorEvidenceResource](#vendorevidenceresource)
      properties:
        data:
          description: Content with [VendorEvidenceResource](#vendorevidenceresource) objects
          items:
            $ref: '#/components/schemas/VendorEvidenceResource'
          type: array
      required:
      - data
      type: object
    VendorUpdateRequest:
      description: ''
      properties:
        data:
          description: ''
          properties:
            attributes:
              properties:
                description:
                  description: ''
                  type: string
                name:
                  description: ''
                  type: string
              type: object
            id:
              description: The JSON-API resource ID
              example: 64YUaLWSviHgibJaRWr3ZE
              type: string
            type:
              description: The JSON-API resource type
              example: resource-type
              type: string
          type: object
      type: object
    VendorFileResponse:
      description: A JSON-API document with a single [VendorFileResource](#vendorfileresource) resource
      properties:
        data:
          $ref: '#/components/schemas/VendorFileResource'
        included:
          description: Included resources
          items:
            properties:
              id:
                description: The JSON-API resource ID
                type: string
              type:
                description: The JSON-API resource type
                type: string
            type: object
          type: array
      required:
      - data
      type: object
    VendorCustomFieldResource:
      description: ''
      properties:
        attributes:
          properties:
            custom_field_id:
              description: ''
              type: string
            entity_id:
              description: ''
              type: string
            name:
              description: ''
              type: string
            value:
              description: ''
              type: string
            vendor_id:
              description: ''
              type: string
          type: object
        id:
          description: The JSON-API resource ID
          example: 64YUaLWSviHgibJaRWr3ZE
          type: string
        relationships:
          properties:
            custom_field:
              properties:
                data:
                  properties:
                    id:
                      description: Related custom_field resource id
                      type: string
                    type:
                      description: Type of related custo

# --- truncated at 32 KB (62 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/credo-ai/refs/heads/main/openapi/credo-ai-vendors-api-openapi.yml