POST
/
integrations
/
jfrog
/
xray-scan
curl --request POST \
  --url https://cloud.local.wirtual.dev/api/v2/integrations/jfrog/xray-scan \
  --header 'Content-Type: application/json' \
  --header 'Wirtual-Session-Token: <api-key>' \
  --data '{
  "agent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "critical": 123,
  "high": 123,
  "medium": 123,
  "results_url": "<string>",
  "workspace_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "detail": "<string>",
  "message": "<string>",
  "validations": [
    {
      "detail": "<string>",
      "field": "<string>"
    }
  ]
}

Authorizations

Wirtual-Session-Token
string
header
required

Body

application/json
Post JFrog XRay scan request
agent_id
string
critical
integer
high
integer
medium
integer
results_url
string
workspace_id
string

Response

200 - application/json
OK
detail
string

Detail is a debug message that provides further insight into why the action failed. This information can be technical and a regular golang err.Error() text.

  • "database: too many open connections"
  • "stat: too many open files"
message
string

Message is an actionable message that depicts actions the request took. These messages should be fully formed sentences with proper punctuation. Examples:

  • "A user has been created."
  • "Failed to create a user."
validations
object[]

Validations are form field-specific friendly error messages. They will be shown on a form field in the UI. These can also be used to add additional context if there is a set of errors in the primary 'Message'.