Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This is the reference for the AssertThat - BDD & Cucumber for Jira REST API. This API is the primary way to get and modify data in the plugin, whether you are developing an app or any other integration. Use it to interact with the plugin for entities, such as features, reports, scenarios and more.

Authentication: All endpoints use basic auth. Refer to Enable & configure AssertThat Plugin to generate API access keys.

Base cloud URL: https://bdd.assertthat.appBase server URL: your company Jira URL

Postman collection and environment with example requests is available for download below.

View file
nameassertthat-bdd-cloud.postman_collectionenvironment.json
view-file
View file
nameassertthat-bdd-server.postman_collection.json
nameassertthat-bdd.postman_environment.json

Downloading features

Cloud:

GET /rest/api/1/project/{projectId}/features

Server:

GET /rest/assertthat/latest/project/{projectId}/client/features

Parameters

Name

Required

Type

Description

mode

No

String

One of: automated, manual, both

jql

No

String

JQL filter for scenarios linked to certain issues

numbered

No

Boolean

Whether to prepend ordinal to the feature name

Uploading report

...

POST/rest/api/1/project/{projectId}/report

Server:

POST/rest/assertthat/latest/project/{projectId}/client/report

Parameters

Name

Required

Type

Description

runName

No

String

The name of the run. Default Test run dd MMM yyyy HH:mm:ss

metadata

No

Json string

Metadata json

runId

YesNo

Long

If submitting new report set to -1. If adding test results to existing should be set to the value return when submitting new report.

form-data: file

Yes

Json file

Cucumber json report file

type

No

String

One of: cucumber, karate. Defaults to cucumber.

customRunId

No

String

Overrides runId

Updating scenario status

...

PUT /rest/api/1/project/{projectId}/scenario/status

...

Code Block
{
  "featureName": "Feature name",
  "scenarioName": "Scenario Name",
  "issueKey": "XXX-123",
  "comment": "comment",
  "status": "NOT_RUN | PASSED | FAILED | IN_PROGRESS"
}

Get test runs

Cloud:

GET /rest/api/1/project/{projectId}/report/runsServer:

GET /rest/assertthat/latest/project/{projectId}/client/report/runs

Parameters

Name

Required

Type

Description

length

No

int

Number of records to return. Default is 10

start

No

int

Start index. Default is 0

Upload feature

...

POST /rest/api/1/project/{projectId}/feature

Server:

POST /rest/assertthat/latest/project/{projectId}/client/upload

Name

Required

Type

Description

override

No

boolean

Whether to override feature if exists with same name

form-data: file

Yes

file

Feature file to upload

Get scenarios report

Cloud:

GET /rest/api/1/project/{projectId}/scenarios/reportServer:

GET /rest/assertthat/latest/project/{projectId}/client/report/runs

Parameters

Name

Required

Type

Description

length

No

int

Number of records to return. Default is 10

start

No

int

Start index. Default is 0

...

Server:

GET /rest/assertthat/latest/project/{projectId}/client/scenarios/report/executions

Parameters

...

Name

...

Required

...

Type

...

Description

...

length

...

No

...

int

...

Number of records to return. Default is 10

...

start

...

No

...

int

...

Start index. Default is 0

Upload scenario executions

...

POST /rest/api/1/project/{projectId}/scenarios/execution

...