/
/Scorecard API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 2h ago · Updated 3w ago
  • getList Projects
  • postCreate Project
  • getList Testsets in Project
  • postCreate Testset
  • getGet Testset
  • deleteDelete Testset
  • patchUpdate Testset
  • getList Testcases in Testset
  • postCreate multiple Testcases
  • getGet Testcase
  • putUpdate Testcase
  • postDelete multiple Testcases
  • getList Metrics
  • postCreate Metric
  • getGet Metric
  • deleteDelete Metric
  • patchUpdate Metric
  • getList Runs
  • postCreate Run
  • getGet Run
  • getList Records
  • postCreate Record
  • deleteDelete Record
  • getList Annotations
  • getList Record Tags
  • postCreate Record Tag
  • deleteDelete Record Tag
  • getList Record Assignees
  • postAssign Record User
  • deleteUnassign Record User
  • getList systems
  • postCreate (upsert) system
  • getGet system
  • deleteDelete system
  • patchUpdate system
  • getGet system version
  • postUpsert system version
  • putUpsert Score
  • postInitiate Attachment Upload
  • getGet Attachment
  • deleteDelete Attachment
  • postCommit Attachment Upload
  • getList Session Attachments

Create multiple Testcases

Create multiple Testcases in the specified Testset.

post/testsets/{testsetId}/testcases

Path parameters

testsetIdstring required
Example:246

The ID of the Testset to add the Testcases to.

Request body

Response

Testcases created successfully

Example response

{
  "items": [
    {
      "validationErrors": [
        {
          "path": "/data/question",
          "message": "Required field missing"
        }
      ]
    }
  ]
}

Changes