> ## 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.

# Post organisations boards actors test

> BoardTest finds the webhook url from within the cluster for a board and sends a POST request to it
with the data in the payload.




## OpenAPI

````yaml post /organisations/{organisationId}/boards/{boardId}/actors/{actionId}/test
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}/boards/{boardId}/actors/{actionId}/test:
    post:
      tags:
        - boards
        - test
      description: >
        BoardTest finds the webhook url from within the cluster for a board and
        sends a POST request to it

        with the data in the payload.
      operationId: BoardTest
      parameters:
        - name: organisationId
          in: path
          required: true
          schema:
            type: string
          example: '101'
        - name: boardId
          in: path
          required: true
          schema:
            type: string
        - name: actionId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        $ref: '#/components/requestBodies/BoardTestRequest'
      responses:
        '202':
          $ref: '#/components/responses/BoardTestResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
components:
  requestBodies:
    BoardTestRequest:
      description: |
        Payload to trigger a board to be published
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/BoardTestPayload'
  responses:
    BoardTestResponse:
      description: The response after a test request has been sent.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/BoardTestResult'
    ErrorResponse:
      description: The default error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    BoardTestPayload:
      type: object
    BoardTestResult:
      description: |
        BoardTestResult is used to indicate if the test request has been sent.
      type: object
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
        extensions:
          type: object
      required:
        - code
        - message
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization

````