curl --request POST \
--url https://api.ryvn.app/v1/orgs/{orgId}/secrets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"secrets": [
{
"name": "<string>",
"values": {
"clientId": "client-bot",
"clientSecret": "client-secret"
}
}
]
}
'{
"secrets": [
{
"name": "<string>",
"version": 123,
"keys": [
"<string>"
],
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}Create one or more organization-level secrets that installations and services across all environments in your Ryvn organization can reference.
curl --request POST \
--url https://api.ryvn.app/v1/orgs/{orgId}/secrets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"secrets": [
{
"name": "<string>",
"values": {
"clientId": "client-bot",
"clientSecret": "client-secret"
}
}
]
}
'{
"secrets": [
{
"name": "<string>",
"version": 123,
"keys": [
"<string>"
],
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}Documentation Index
Fetch the complete documentation index at: https://ryvn.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the organization
Show child attributes
Secrets created successfully
Show child attributes
Was this page helpful?