POST
/
v1
/
scans
/
config
/
verify
/
contents
Get Verify Config Contents
curl --request POST \
  --url https://api.projectdiscovery.io/v1/scans/config/verify/contents \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "config": "<string>",
  "config_type": "<string>",
  "provider": "jira"
}'
{
  "jira": [
    {
      "project_id": "<string>",
      "project_name": "<string>",
      "issue_types": [
        {
          "id": "<string>",
          "name": "<string>",
          "statuses": [
            "<string>"
          ]
        }
      ]
    }
  ],
  "linear": [
    {
      "team_id": "<string>",
      "team_name": "<string>",
      "open_states": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ]
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Headers

X-Team-Id
string

Query Parameters

project_id
string

Jira Project ID to fetch details for

team_id
string

Linear Team ID to fetch details for

Body

application/json

Response

200
application/json

Example response

The response is of type object.