Properties
| Properties | ||
|---|---|---|
| secret_key_id string Must be a UUID. The unique identifier of the secret key. | ||
| organization_id string The identifier of the organization. | ||
| environment string The environment associated with the secret key. | ||
| description string A description of the secret key. | ||
| type string This field uniquely identifies the secret key. | ||
| key string The encrypted value of the secret key. | ||
| created_at string Time at which the secret key was created. | ||
| created_by object An object indicating the user or API key that created the secret key.
| ||
| updated_at string Time at which the secret key was last updated. | ||
| updated_by object An object indicating the user or API key that last updated the secret key.
|
Example
{
"organization_id": "4ce6ad99-9576-4d28-84ba-c30d2d536cbe",
"secret_key_id": "43c13dc8-2c19-402c-bb70-a7deb56b9f38",
"type": "test",
"key": "your_api_key_value",
"description": "API Key for Integration X",
"created_at": "2023-01-10T12:34:56.789Z",
"created_by": {
"id": "00000000-0000-0000-0000-000000000001",
"type": "user"
},
"updated_at": "2023-01-10T12:34:56.789Z",
"updated_by": {
"id": "00000000-0000-0000-0000-000000000001",
"type": "user"
}
}