v.2.1.0
Platform
Updated routes for the agent's multi-tenancy APIs from the platform.
Changes need to be applied
Configure Agent API Key
Add the key and value to your .env
AGENT_API_KEY=<ENCRYPTED_VALUE>
# e.g., U2FsdGVkX19PZaXwvbgPkRNN+ACfxQgFxK3M0d5bQ=
Update the Platform Admin key
Encrypt your raw Agent API key using AES with CRYPTO_PRIVATE_KEY
. You can use any tool (OpenSSL, a CLI/GUI, or a small script). Update the platform_admin
API key in the org_agent
table for the relevant agent (Shared or Dedicated).
Credo-Controller
Removed the duplicate routes for multi-tenancy.
Changes need to be applied
Add the key–value pair apiKey to your
cliConfig.json
(required if you are running the agent locally). Example:"apiKey": "U2FsdGVkX19PZaXwvbgPkRNN+ACfxQgFxK3M0d5bQ="
You can obtain the base wallet token by providing the apiKey.
base_URL/agent/token
You can access the tenant wallet and perform operations using the tenant bearer token, which is returned in the response during tenant creation.
Last updated