/authorizer/api/v1/secrets
Get all accessible account secrets
limit
int
Maximum number of objects to return
offset
int
Offset from which to start fetching objects
sortdir
string
Sort direction, asc or desc
sortkey
string
Sort by specific object property
Successful request
{
"count": 123,
"items": {
"path": "string",
"type": "TARGET_DOMAIN_SECRET",
"username": "string",
"email": "string",
"full_name": "string",
"target_domain": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"name": "string",
"deleted": true
},
"host": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"addresses": [
"string"
],
"common_name": "string",
"external_id": "string",
"instance_id": "string"
},
"created": "2023-06-07T17:32:28Z",
"updated": "2023-06-07T17:32:28Z"
}
}
/authorizer/api/v1/secrets/search
Search accessible account secrets
keywords
string
Space or comma separated list of search keywords
host_id
string
Limit search to specific host object
username
string
Limit search to specific host account username
{
"keywords": "string",
"host_id": "5bf77342-221c-11ee-be56-0242ac120002",
"username": "string"
}
Successful request
{
"count": 123,
"items": {
"path": "string",
"type": "TARGET_DOMAIN_SECRET",
"username": "string",
"email": "string",
"full_name": "string",
"target_domain": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"name": "string",
"deleted": true
},
"host": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"addresses": [
"string"
],
"common_name": "string",
"external_id": "string",
"instance_id": "string"
},
"created": "2023-06-07T17:32:28Z",
"updated": "2023-06-07T17:32:28Z"
}
}
/authorizer/api/v1/secrets/checkouts
Get secret checkouts
limit
int
Maximum number of objects to return
offset
int
Offset from which to start fetching objects
sortdir
string
Sort direction, asc or desc
sortkey
string
Sort by specific object property
Successful request
{
"count": 123,
"items": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"path": "string",
"type": "TARGET_DOMAIN_SECRET",
"expires": "2023-06-07T17:32:28Z",
"created": "2023-06-07T17:32:28Z",
"explicit_checkout": true,
"secrets": [
{
"version": 123,
"secret": "string",
"created": "2023-06-07T17:32:28Z"
}
],
"username": "string",
"email": "string",
"full_name": "string",
"target_domain": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"name": "string",
"deleted": true
},
"host": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"addresses": [
"string"
],
"common_name": "string",
"external_id": "string",
"instance_id": "string"
},
"managed_account_id": "5bf77342-221c-11ee-be56-0242ac120002",
"user_id": "5bf77342-221c-11ee-be56-0242ac120002"
}
}
/authorizer/api/v1/secrets/checkouts
Checkout account secret
path
string
Path of secret
{
"path": "string"
}
Successful request
{
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"path": "string",
"type": "TARGET_DOMAIN_SECRET",
"expires": "2023-06-07T17:32:28Z",
"created": "2023-06-07T17:32:28Z",
"explicit_checkout": true,
"secrets": [
{
"version": 123,
"secret": "string",
"created": "2023-06-07T17:32:28Z"
}
],
"username": "string",
"email": "string",
"full_name": "string",
"target_domain": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"name": "string",
"deleted": true
},
"host": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"addresses": [
"string"
],
"common_name": "string",
"external_id": "string",
"instance_id": "string"
},
"managed_account_id": "5bf77342-221c-11ee-be56-0242ac120002",
"user_id": "5bf77342-221c-11ee-be56-0242ac120002"
}
/authorizer/api/v1/secrets/checkouts/{id}
Get secret checkout
id
string
required
Successful request
{
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"path": "string",
"type": "TARGET_DOMAIN_SECRET",
"expires": "2023-06-07T17:32:28Z",
"created": "2023-06-07T17:32:28Z",
"explicit_checkout": true,
"secrets": [
{
"version": 123,
"secret": "string",
"created": "2023-06-07T17:32:28Z"
}
],
"username": "string",
"email": "string",
"full_name": "string",
"target_domain": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"name": "string",
"deleted": true
},
"host": {
"id": "5bf77342-221c-11ee-be56-0242ac120002",
"addresses": [
"string"
],
"common_name": "string",
"external_id": "string",
"instance_id": "string"
},
"managed_account_id": "5bf77342-221c-11ee-be56-0242ac120002",
"user_id": "5bf77342-221c-11ee-be56-0242ac120002"
}
/authorizer/api/v1/secrets/checkouts/{id}/release
Release secret checkout
id
string
required
Secret was successfully released
Empty response
Was this page helpful?