GET
/
workspaces
/
{workspace_id}
/
secrets
/
{secret_id}
Get secret
curl --request GET \
  --url https://s-server-demo.siftd.ai:9800/api/workspaces/{workspace_id}/secrets/{secret_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "store_ref": "<string>",
  "store_type": "spin_store",
  "value": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string
required

Workspace ID

secret_id
string
required

Secret ID

Query Parameters

org_id
string
required

Organization ID

Response

200
application/json

OK

The response is of type object.