Skip to content
Artem Fedorov edited this page Oct 9, 2018 · 34 revisions

BlazeMeter API client provide you capabilities for working with BlazeMeter API from your Java application.

Just add the following dependency to your pom.xml file:

<dependency>
    <groupId>com.blazemeter</groupId>
    <artifactId>blazemeter-api-client</artifactId>
    <version>1.14</version>
</dependency>

For easier development we wrapped a lot of additional options in one simple class: BlazeMeterUtils.java. See short instructions how you can use it.

If you use proxy server see instructions how to set up proxy.

Now a short list of features of this library:

  • User

    • Get list of user Accounts;
  • Account

    • Create Workspace;
    • Get list of Workspaces;
  • Workspace

    • Get Workspace;
    • Create Project;
    • Get list of Projects;
    • Get list of Single Tests;
    • Get list of Multi Tests;
  • Project

    • Create Single Test;
    • Get list of Single Tests;
    • Get list of Multi Tests;
  • Single Test

    • Start;
    • Start with properties;
    • Get Single test;
  • Multi Test

    • Start;
    • Get Multi test;
  • Test Detector

    • Detect Test;
  • Session

    • Post properties;
    • Download JTL report;
  • Master

    • Get public report link;
    • Download JUnit report;
    • Get list of Sessions;
    • Stop;
    • Terminate;
    • Get Master status;
    • Get summary report;
    • Get functional report;
    • Post notes;
    • Post properties;
    • Get CI status;
Clone this wiki locally