getComparisonSummary

@GET(value = "api/comparison/summary")
abstract suspend fun getComparisonSummary(@Query(value = "buildIdA") buildIdA: String, @Query(value = "buildIdB") buildIdB: String): ComparisonSummary

GET api/comparison/summary Get a summary of differences between two builds. <mark>Beta:</mark> Returns a summary of which comparison dimensions have differences between two builds. Both builds must use the same build tool (both Gradle or both Maven). Responses:

  • 200: The comparison summary.

  • 400: The request cannot be fulfilled due to a problem.

  • 404: The referenced resource either does not exist or the permissions to know about it are missing.

  • 500: The server encountered an unexpected error.

  • 503: The server is not ready to handle the request.

Return

ComparisonSummary

Parameters

buildIdA

Build Scan ID of build A.

buildIdB

Build Scan ID of build B.