Skip to main content
POST
/
v1
/
rulesets
Create a new catalog ruleset version
curl --request POST \
  --url https://api.example.com/v1/rulesets \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "checks": [
    {}
  ],
  "name": "<string>",
  "sets": {},
  "verdict_policy": {},
  "version": 123
}
'

Documentation Index

Fetch the complete documentation index at: https://docs-attestly.code4source.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
checks
Checks · object[]
required
name
string
required
sets
Sets · object
required
verdict_policy
Verdict Policy · object
version
integer | null

Response

Successful Response