Get agent input parameters
Returns the list of input parameters the agent expects, including whether each parameter is encrypted.
Use this endpoint to discover which parameters to pass when calling the start-run endpoint, and which parameters are sensitive (encrypted at rest). For encrypted parameters the default value is not returned, to avoid leaking secrets.
Authorizations
API Key authorization header. Example: "Authorization: ApiKey {your-api-key}"
OAuth 2.0 Bearer token. Example: "Authorization: Bearer {access-token}"
Path Parameters
The ID of the agent
Response
Returns the list of input parameters
The parameter name to use when starting a run via the inputParameters field.
The default value for this parameter, or null if the parameter is encrypted. Encrypted parameter values are never exposed through the API.
True if this parameter is stored encrypted at rest. When starting a run, callers can send plain text values for encrypted parameters and the server will encrypt them automatically.