Skip to main content
GET
/
integrations
/
jfrog
/
container-registry
/
project
/
{projectId}
/
credentials
/
{credentialId}
Get JFrog credential details
curl --request GET \
  --url https://api-eu.cybedefend.com/integrations/jfrog/container-registry/project/{projectId}/credentials/{credentialId} \
  --header 'x-api-key: <api-key>'
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "jfrogUrl": "https://mycompany.jfrog.io",
  "repositoryKey": "docker-local",
  "username": "[email protected]",
  "createdAt": "2025-01-01T00:00:00Z",
  "description": "Production JFrog Artifactory registry"
}

Authorizations

x-api-key
string
header
required

API Key for authentication. You can generate an API key from your personal settings.

Path Parameters

projectId
string<uuid>
required

CybeDefend project ID

Example:

"550e8400-e29b-41d4-a716-446655440000"

credentialId
string<uuid>
required

JFrog credential ID

Example:

"550e8400-e29b-41d4-a716-446655440001"

Response

Credential details

id
string
required

Credential ID

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

jfrogUrl
string
required

JFrog Artifactory URL

Example:

"https://mycompany.jfrog.io"

repositoryKey
string
required

Docker repository key

Example:

"docker-local"

username
string
required

Username

createdAt
string
required

Creation date

Example:

"2025-01-01T00:00:00Z"

description
string

Description

Example:

"Production JFrog Artifactory registry"