{
  "service": "blaze_meter_functional",
  "displayName": "BlazeMeter Functional",
  "categories": [
    "Developer Tools"
  ],
  "authTypes": [
    "api_key"
  ],
  "auth": [
    {
      "type": "api_key",
      "label": "API Secret",
      "placeholder": "BLAZEMETER_API_SECRET",
      "description": "BlazeMeter API secret used as the Basic Auth password. Create or copy API keys from the BlazeMeter API Keys settings page: https://a.blazemeter.com/app/#/settings/api-keys.",
      "extraFields": [
        {
          "key": "apiKeyId",
          "label": "API Key ID",
          "inputType": "text",
          "required": true,
          "secret": false,
          "placeholder": "BLAZEMETER_API_KEY_ID",
          "description": "BlazeMeter API key ID used as the Basic Auth username. Create or copy API keys from the BlazeMeter API Keys settings page: https://a.blazemeter.com/app/#/settings/api-keys."
        }
      ]
    }
  ],
  "homepageUrl": "https://www.blazemeter.com/",
  "actions": [
    {
      "id": "blaze_meter_functional.get_active_sessions",
      "service": "blaze_meter_functional",
      "name": "get_active_sessions",
      "description": "Get the active BlazeMeter sessions for the configured API key.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "Input for getting active BlazeMeter sessions."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "apiVersion": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The BlazeMeter API version returned by the endpoint."
              },
              {
                "type": "null"
              }
            ]
          },
          "requestId": {
            "anyOf": [
              {
                "type": "string",
                "description": "The BlazeMeter request identifier."
              },
              {
                "type": "null"
              }
            ]
          },
          "error": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "code": {
                    "anyOf": [
                      {
                        "type": "integer",
                        "description": "The numeric BlazeMeter error code."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "message": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The BlazeMeter error message."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  }
                },
                "additionalProperties": false,
                "description": "The error object returned by BlazeMeter when a request fails."
              },
              {
                "type": "null"
              }
            ]
          },
          "result": {
            "description": "The result payload returned by BlazeMeter."
          },
          "total": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The total number of matching records when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "limit": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The response limit when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "skip": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The response offset when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "hidden": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The number of hidden records when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw BlazeMeter response object."
          }
        },
        "additionalProperties": false,
        "required": [
          "apiVersion",
          "requestId",
          "error",
          "result",
          "total",
          "limit",
          "skip",
          "hidden",
          "raw"
        ],
        "description": "A normalized BlazeMeter API v4 response envelope."
      }
    },
    {
      "id": "blaze_meter_functional.get_multi_test",
      "service": "blaze_meter_functional",
      "name": "get_multi_test",
      "description": "Get one BlazeMeter Functional multi-test by collection ID.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "collectionId": {
            "type": "integer",
            "minimum": 0,
            "description": "The BlazeMeter multi-test collection ID to retrieve."
          },
          "populateTests": {
            "type": "boolean",
            "description": "Whether BlazeMeter should include embedded test objects."
          }
        },
        "additionalProperties": false,
        "required": [
          "collectionId"
        ],
        "description": "Input for retrieving one BlazeMeter Functional multi-test."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "apiVersion": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The BlazeMeter API version returned by the endpoint."
              },
              {
                "type": "null"
              }
            ]
          },
          "requestId": {
            "anyOf": [
              {
                "type": "string",
                "description": "The BlazeMeter request identifier."
              },
              {
                "type": "null"
              }
            ]
          },
          "error": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "code": {
                    "anyOf": [
                      {
                        "type": "integer",
                        "description": "The numeric BlazeMeter error code."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "message": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The BlazeMeter error message."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  }
                },
                "additionalProperties": false,
                "description": "The error object returned by BlazeMeter when a request fails."
              },
              {
                "type": "null"
              }
            ]
          },
          "result": {
            "description": "The result payload returned by BlazeMeter."
          },
          "total": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The total number of matching records when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "limit": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The response limit when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "skip": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The response offset when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "hidden": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The number of hidden records when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw BlazeMeter response object."
          }
        },
        "additionalProperties": false,
        "required": [
          "apiVersion",
          "requestId",
          "error",
          "result",
          "total",
          "limit",
          "skip",
          "hidden",
          "raw"
        ],
        "description": "A normalized BlazeMeter API v4 response envelope."
      }
    },
    {
      "id": "blaze_meter_functional.list_multi_tests",
      "service": "blaze_meter_functional",
      "name": "list_multi_tests",
      "description": "List BlazeMeter Functional multi-tests in a workspace.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "integer",
            "minimum": 1,
            "description": "The BlazeMeter workspace ID to list multi-tests from."
          },
          "projectId": {
            "type": "integer",
            "minimum": 1,
            "description": "The BlazeMeter project ID used to filter multi-tests."
          },
          "skip": {
            "type": "integer",
            "minimum": 0,
            "description": "The number of multi-tests to skip before returning results."
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "description": "The maximum number of multi-tests to return."
          },
          "sort": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "One BlazeMeter sort field. Prefix with - for descending order."
            },
            "description": "Sort fields accepted by BlazeMeter, such as name or -created."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId"
        ],
        "description": "Input for listing BlazeMeter Functional multi-tests."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "apiVersion": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The BlazeMeter API version returned by the endpoint."
              },
              {
                "type": "null"
              }
            ]
          },
          "requestId": {
            "anyOf": [
              {
                "type": "string",
                "description": "The BlazeMeter request identifier."
              },
              {
                "type": "null"
              }
            ]
          },
          "error": {
            "anyOf": [
              {
                "type": "object",
                "properties": {
                  "code": {
                    "anyOf": [
                      {
                        "type": "integer",
                        "description": "The numeric BlazeMeter error code."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "message": {
                    "anyOf": [
                      {
                        "type": "string",
                        "description": "The BlazeMeter error message."
                      },
                      {
                        "type": "null"
                      }
                    ]
                  }
                },
                "additionalProperties": false,
                "description": "The error object returned by BlazeMeter when a request fails."
              },
              {
                "type": "null"
              }
            ]
          },
          "result": {
            "description": "The result payload returned by BlazeMeter."
          },
          "total": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The total number of matching records when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "limit": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The response limit when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "skip": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The response offset when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "hidden": {
            "anyOf": [
              {
                "type": "integer",
                "description": "The number of hidden records when returned."
              },
              {
                "type": "null"
              }
            ]
          },
          "raw": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "The raw BlazeMeter response object."
          }
        },
        "additionalProperties": false,
        "required": [
          "apiVersion",
          "requestId",
          "error",
          "result",
          "total",
          "limit",
          "skip",
          "hidden",
          "raw"
        ],
        "description": "A normalized BlazeMeter API v4 response envelope."
      }
    }
  ]
}
