Skip to main content
Security & Audit/Security
GETSecuritySince 1.0SynchronousAuth Required

ListSyncSources

List all configured CVE data sync sources.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    List of configured sync source entries

    Example: (nested array)

    • idString

      Unique identifier for this sync source configuration

      Example: sync-src-001

    • typeString

      Type of the CVE data sync source

      Example: SYNC_SOURCE_TYPE_UNSPECIFIED

    • apiKeyMaskedString

      API key with sensitive characters masked for display

      Example: abc***xyz

    • syncIntervalHoursInteger

      Interval in hours between automatic sync operations

      Example: 24

    • ecosystemsList

      List of package ecosystems to sync CVE data for

      Example: item1,item2

    • lastModifiedSinceString

      Timestamp filter to fetch only entries modified since this time

      Example: 2024-01-01T00:00:00Z

    • createdAtString

      Timestamp when this sync source was first configured

      Example: 2026-01-15T08:00:00Z

  • totalInteger

    Total number of sync sources configured

    Example: 3

  • limitInteger

    Maximum number of items returned in this response

    Example: 20

  • offsetInteger

    Number of items skipped before this page

    Example: 20

Endpoint

GET/api/v1/security/cve/sync-sources

/api/v1/security/cve/sync-sources

Operation ID

ListSyncSources

Permalink

Request Example

curl -X GET '{host}/api/v1/security/cve/sync-sources' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 3,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history