Skip to main content
GET
/
headless
/
sftp
/
credentials
List SFTP credentials
curl --request GET \
  --url https://app.dromo.io/api/v1/headless/sftp/credentials/ \
  --header 'X-Dromo-License-Key: <api-key>'
{
  "count": 2,
  "next": null,
  "previous": null,
  "results": [
    {
      "hostname": "sftp.example.com",
      "port": 22,
      "user": "sftpuser",
      "auth_type": "PASSWORD",
      "id": "ee5d0e45-b098-47bc-8217-e93790243dfa",
      "key_fingerprint": "SHA256:abc123..."
    }
  ]
}

Authorizations

X-Dromo-License-Key
string
header
required

This backend API key is different than your frontend license key. Please use the "Backend" license key from your Dromo Dashboard.

Response

200 - application/json

List of SFTP credentials

count
integer
Example:

2

next
string | null
Example:

null

previous
string | null
Example:

null

results
object[]