- About Veeam Backup & Replication REST API
- Overview
- How To
- Changelog
- Login
- Service
- Services
- Credentials
- getGet All Credentials
- postAdd Credentials Record
- getGet Credentials Record
- putEdit Credentials Record
- delRemove Credentials Record
- postChange Password
- postChange Linux Private Key
- postChange Linux Root Password
- getGet All Cloud Credentials
- postAdd Cloud Credentials Record
- postGet Verification Code
- postRegister Azure AD Application
- getGet Cloud Credentials Record
- putEdit Cloud Credentials Record
- delRemove Cloud Credentials Record
- postChange Secret Key
- postChange Certificate
- getGet All Helper Appliances
- postAdd or Edit Helper Appliance
- getGet Helper Appliance
- delRemove Helper Appliance
- Encryption
- Connection
- Cloud Browser
- Inventory Browser
- Traffic Rules
- General Options
- Configuration Backup
- Managed Servers
- Repositories
- getGet All Repositories
- postAdd Repository
- getGet All Repository States
- getGet Repository
- putEdit Repository
- delRemove Repository
- getGet All Scale-Out Backup Repositories
- postAdd Scale-Out Backup Repository
- getGet Scale-Out Backup Repository
- putEdit Scale-Out Backup Repository
- delRemove Scale-Out Backup Repository
- postEnable Sealed Mode
- postDisable Sealed Mode
- postEnable Maintenance Mode
- postDisable Maintenance Mode
- Proxies
- Jobs
- Backups
- Backup Objects
- Object Restore Points
- Restore
- Sessions
- Agents
- Automation
- postImport Jobs
- postExport Jobs
- postImport Credentials
- postExport Credentials
- postImport Cloud Credentials
- postExport Cloud Credentials
- postImport Proxies
- postExport Proxies
- postImport Servers
- postExport Servers
- postImport Repositories
- postExport Repositories
- postImport Encryption Passwords
- postExport Encryption Passwords
- getGet All Automation Sessions
- getGet Automation Session
- getGet Automation Session Logs
- postStop Automation Session
The Connection section defines a path and operation for retrieving a TLS certificate or SSH fingerprint used to establish a secure connection between the backup server and the specified server.
Request TLS Certificate or SSH Fingerprint
The HTTP POST request to the /api/v1/connectionCertificate
path allows you to get a TLS certificate or SSH fingerprint of the specified host.
header Parameters
x-api-version required | string Default: 1.1-rev0 Version and revision of the client REST API. Must be in the following format: |
Request Body schema: application/jsonrequired
serverName required | string Full DNS name or IP address of the server. |
credentialsId required | string <uuid> ID of a credentials record used to connect to the server. |
type required | string (EManagedServerType) Type of the server. |
port | integer Port used to communicate with the server. |
OK
Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.
Unauthorized. The authorization header has been expected but not found (or found but is expired).
Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.
Internal server error. The request has been received but could not be completed because of an internal error at the server side.
- Payload
- curl
- Python
- JavaScript
- C#
- Go
{- "serverName": "vcenter01.tech.local",
- "credentialsId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
- "type": "ViHost",
- "port": 443
}
- 201
- 400
- 401
- 403
- 500
{- "fingerprint": null,
- "certificate": {
- "thumbprint": "1FFB549DC6C6CFF4DA8923F3E640F88925D11704",
- "serialNumber": "00CE2401CE350B143C",
- "keyAlgorithm": "RSA-PKCS1-KeyEx",
- "keySize": "2048",
- "subject": "C=US, CN=vcenter01.tech.local",
- "issuedTo": "vcenter01.tech.local",
- "issuedBy": "CA",
- "validFrom": "2015-08-21T18:28:05+02:00",
- "validBy": "2025-08-15T18:27:45+02:00"
}
}