curl --request GET \
--url http://localhost:3000/api/v1/vault/entries/{agent} \
--header 'Authorization: Bearer <token>'{
"ok": true,
"data": [
{
"service": "<string>",
"type": "smtp",
"keys": [
"<string>"
],
"label": "<string>"
}
]
}Returns metadata (service name, type, label, credential key names) without any secret values.
curl --request GET \
--url http://localhost:3000/api/v1/vault/entries/{agent} \
--header 'Authorization: Bearer <token>'{
"ok": true,
"data": [
{
"service": "<string>",
"type": "smtp",
"keys": [
"<string>"
],
"label": "<string>"
}
]
}API key passed as a Bearer token. Configure via the apiKeys field in polpo.json or the POLPO_API_KEY environment variable.