diff --git a/packages/api/ssh/issue_ssh_creds.go b/packages/api/ssh/issue_ssh_creds.go index c68426d..4ba8ec5 100644 --- a/packages/api/ssh/issue_ssh_creds.go +++ b/packages/api/ssh/issue_ssh_creds.go @@ -13,7 +13,7 @@ func CallIssueSshCredsV1(httpClient *resty.Client, request IssueSshCredsV1Reques res, err := httpClient.R(). SetResult(&issueSshCredsResponse). SetBody(request). - Post("/v1/ssh/issue") + Post("/v1/ssh/certificates/issue") if err != nil { return IssueSshCredsV1Response{}, errors.NewRequestError(callIssueSshCredsOperation, err) diff --git a/packages/api/ssh/sign_ssh_public_key.go b/packages/api/ssh/sign_ssh_public_key.go index cf4c1e6..4dc3b0e 100644 --- a/packages/api/ssh/sign_ssh_public_key.go +++ b/packages/api/ssh/sign_ssh_public_key.go @@ -13,7 +13,7 @@ func CallSignSshPublicKeyV1(httpClient *resty.Client, request SignSshPublicKeyV1 res, err := httpClient.R(). SetResult(&signSshPublicKeyResponse). SetBody(request). - Post("/v1/ssh/sign") + Post("/v1/ssh/certificates/sign") if err != nil { return SignSshPublicKeyV1Response{}, errors.NewRequestError(callSignSshPublicKeyOperation, err)