v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Catalog API

Validate an Executor Configuration

Use this endpoint to validate an executor configuration against its JSON Schema.

post/v1/catalog/executors/{id}/validate

Path parameters

idstring required

Unique identifier of the catalog executor.

Request body

configobject

Configuration object to validate.

Example request

{
  "config": {
    "method": "POST",
    "url": "https://api.example.com/validate"
  }
}

Response

Indicates that the request was successful and the response contains the requested data.

errorstring

Validation error message. Empty when valid.

validboolean

Whether the configuration passed validation.

Example response

{
  "valid": true
}