GET
/
api
/
v1
/
users
/
me
/
ssh_keys
/
{id}
Get SSH key details
curl --request GET \
  --url https://app.miget.com/api/v1/users/me/ssh_keys/{id} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "public_key": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer token for authentication. Format: 'Bearer {token}'

Path Parameters

id
string
required

SSH key ID

Response

Get SSH key details

Api_V1_Entities_SshKey model

id
integer<int32>
required

SSH key ID

public_key
string
required

SSH public key content

created_at
string<date-time>
required

Creation timestamp

updated_at
string<date-time>
required

Last update timestamp