Overview
- Introduction
- Authentication
- Examples
Endpoints
- Identities
- Token Auth
- Universal Auth
- GCP Auth
- Alibaba Cloud Auth
- AWS Auth
- OCI Auth
- Azure Auth
- Kubernetes Auth
- OIDC Auth
- JWT Auth
- LDAP Auth
- Groups
- Organizations
- Projects
- Project Users
- Project Groups
- Project Identities
- Project Roles
- Project Templates
- Environments
- Folders
- Secret Tags
- Secrets
- Dynamic Secrets
- Secret Imports
- Secret Rotations
- Secret Scanning
- Identity Specific Privilege
- App Connections
- Secret Syncs
- Integrations
- Service Tokens
- Audit Logs
Infisical PKI
- Subscribers
- Certificate Authorities
- Certificates
- Certificate Templates
- Certificate Collections
- PKI Alerting
Infisical SSH
- Hosts
- Host Groups
- Certificates
- Certificate Authorities
- Certificate Templates
Infisical KMS
- Keys
- Encryption
- Signing
Hosts
Issue User Certificate
Issue SSH certificate for user
POST
/
api
/
v1
/
ssh
/
hosts
/
{sshHostId}
/
issue-user-cert
Copy
Ask AI
curl --request POST \
--url https://us.infisical.com/api/v1/ssh/hosts/{sshHostId}/issue-user-cert \
--header 'Content-Type: application/json' \
--data '{
"loginUser": "<string>"
}'
Copy
Ask AI
{
"serialNumber": "<string>",
"signedKey": "<string>",
"privateKey": "<string>",
"publicKey": "<string>",
"keyAlgorithm": "RSA_2048"
}
Path Parameters
The ID of the SSH host to issue the SSH credentials for.
Body
application/json
Response
200
application/json
Default Response
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://us.infisical.com/api/v1/ssh/hosts/{sshHostId}/issue-user-cert \
--header 'Content-Type: application/json' \
--data '{
"loginUser": "<string>"
}'
Copy
Ask AI
{
"serialNumber": "<string>",
"signedKey": "<string>",
"privateKey": "<string>",
"publicKey": "<string>",
"keyAlgorithm": "RSA_2048"
}
Assistant
Responses are generated using AI and may contain mistakes.