Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
secret found
Retrieve a specific secret by id
curl --request GET \
--url https://api.rootly.com/v1/secrets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "f3a6907c-903d-4ce6-a5d9-fd767e34f454",
"type": "secrets",
"attributes": {
"kind": "built_in",
"name": "sljnjeiiun",
"secret": "[REDACTED]",
"hashicorp_vault_mount": "secret",
"hashicorp_vault_path": null,
"hashicorp_vault_version": 0,
"created_at": "2025-10-07T14:16:09.138-07:00",
"updated_at": "2025-10-07T14:16:09.138-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
secret found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/secrets/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "f3a6907c-903d-4ce6-a5d9-fd767e34f454",
"type": "secrets",
"attributes": {
"kind": "built_in",
"name": "sljnjeiiun",
"secret": "[REDACTED]",
"hashicorp_vault_mount": "secret",
"hashicorp_vault_path": null,
"hashicorp_vault_version": 0,
"created_at": "2025-10-07T14:16:09.138-07:00",
"updated_at": "2025-10-07T14:16:09.138-07:00"
}
}
}