Skip to main content
POST Add Case Type
Updated this week
{{apiUrl}}/api/v1/run

Creates a new Test Case Type for your Jira project to associate with a Test Case.

Example Request

HEADERS

Authorization

<vansahConnectToken> Generate a Token from Vansah

Body

raw (json)

Request BODY PARAMETERS:

  • name(String, Required): Name of the case type

  • project(Object, Required):
    Contains essential project-related details:

    • Key(String, Required): Jira Project Key (Required for connect API calls), e.g. ("TEST", "PRODAPP")

Example Request

{
"name": "Regression",
"project": {
"key": "DEMO"
}
}

Did this answer your question?