Key
Key points store confidential values that can be accessed by the Point Engine. Common use cases are API keys, various security tokens, or an account number.
Naming Keys
The names of Key Points must always start with a
__
, such as__openai_key
.
Example
Key point
{
"organization_id": "org_6595cb88cef61bf614830d14",
"name": "__openai_key",
"value": "123456789",
"managed_organization": "org_6595cb88cef61bf614830d14",
"resource_type": "key"
}
Highlighted Keys
value
: The confidential value that is stored. Can be a string.E.g.
"value": "123456789"
Fill Triggers
Key points can be used as variables within code points via code point parameters.
Updated 5 months ago
What’s Next