AppDirect AI User Inputs API
The AI User Inputs API from AppDirect — 3 operation(s) for ai user inputs.
The AI User Inputs API from AppDirect — 3 operation(s) for ai user inputs.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/appdirect-ai-user-inputs-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Devs.ai AI User Inputs API
version: '1.0'
security: []
tags:
- name: AI User Inputs
paths:
/api/v1/ai/{aiId}/user-inputs:
get:
tags:
- AI User Inputs
summary: List AI user inputs
description: Retrieves configured user inputs for the AI.
operationId: listAIUserInputs
parameters:
- name: aiId
in: path
required: true
description: The identifier of the AI.
schema:
type: string
responses:
'200':
description: List of user inputs.
content:
application/json:
schema:
$ref: '#/components/schemas/ListAIUserInputsResponse'
security:
- ApiKeyAuth: []
post:
tags:
- AI User Inputs
summary: Create an AI user input
description: Creates a user input field for the AI.
operationId: createAIUserInput
parameters:
- name: aiId
in: path
required: true
description: The identifier of the AI.
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateAIUserInputRequest'
responses:
'201':
description: User input created.
content:
application/json:
schema:
$ref: '#/components/schemas/AIUserInput'
security:
- ApiKeyAuth: []
/api/v1/ai/{aiId}/user-inputs/{userInputId}:
put:
tags:
- AI User Inputs
summary: Update an AI user input
description: Updates a configured user input for the AI.
operationId: updateAIUserInput
parameters:
- name: aiId
in: path
required: true
description: The identifier of the AI.
schema:
type: string
- name: userInputId
in: path
required: true
description: The identifier of the user input.
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAIUserInputRequest'
responses:
'200':
description: User input updated.
content:
application/json:
schema:
$ref: '#/components/schemas/AIUserInput'
security:
- ApiKeyAuth: []
delete:
tags:
- AI User Inputs
summary: Delete an AI user input
description: Deletes a configured user input from the AI.
operationId: deleteAIUserInput
parameters:
- name: aiId
in: path
required: true
description: The identifier of the AI.
schema:
type: string
- name: userInputId
in: path
required: true
description: The identifier of the user input.
schema:
type: string
responses:
'204':
description: User input deleted.
security:
- ApiKeyAuth: []
/api/v1/ai/{aiId}/user-inputs/order:
put:
tags:
- AI User Inputs
summary: Reorder AI user inputs
description: Updates the order of configured user inputs for the AI.
operationId: updateAIUserInputsOrder
parameters:
- name: aiId
in: path
required: true
description: The identifier of the AI.
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAIUserInputsOrderRequest'
responses:
'200':
description: Order updated.
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateAIUserInputsOrderResponse'
security:
- ApiKeyAuth: []
components:
schemas:
UpdateAIUserInputRequest:
allOf:
- $ref: '#/components/schemas/CreateAIUserInputRequest'
UpdateAIUserInputsOrderResponse:
type: object
properties:
success:
type: boolean
CreateAIUserInputRequest:
type: object
properties:
variableName:
type: string
type:
$ref: '#/components/schemas/AIUserInputType'
label:
type: string
configuration:
type: object
showOnChatCreate:
type: boolean
orderIndex:
type: integer
required:
- variableName
- type
- label
- configuration
AIUserInput:
type: object
properties:
id:
type: string
createdAt:
type: string
format: date-time
updatedAt:
type: string
format: date-time
aiId:
type: string
variableName:
type: string
type:
$ref: '#/components/schemas/AIUserInputType'
label:
type: string
configuration:
type: object
showOnChatCreate:
type: boolean
orderIndex:
type: integer
UpdateAIUserInputsOrderRequest:
type: object
properties:
inputs:
type: array
items:
$ref: '#/components/schemas/AIUserInputOrderItem'
required:
- inputs
AIUserInputType:
type: string
enum:
- SHORT_TEXT
- LONG_TEXT
- TEXT_CHOICE
- IMAGE_CHOICE
- DATE
- NUMBER
- PHONE_NUMBER
- FILE_UPLOAD
- DISPLAY
- ADDRESS
AIUserInputOrderItem:
type: object
properties:
id:
type: string
orderIndex:
type: integer
required:
- id
- orderIndex
ListAIUserInputsResponse:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/AIUserInput'
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: Authorization
description: Enter your bearer token in the format **Bearer {token}**. Legacy header X-Authorization is also supported for backwards compatibility.