Zudello API Placeholder (1.0.0)
Download OpenAPI specification:Download
Replace this file with your actual OpenAPI specification.
Create a new user
Request Body schema: application/jsonrequired
name required | string |
email required | string <email> |
Responses
Request samples
- Payload
Content type
application/json
{- "name": "string",
- "email": "user@example.com"
}
Response samples
- 201
- default
Content type
application/json
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "email": "user@example.com"
}
Update a specific user
path Parameters
userId required | string <uuid> The id of the user to update |
Request Body schema: application/jsonrequired
Updated user information
name required | string |
email required | string <email> |
Responses
Request samples
- Payload
Content type
application/json
{- "name": "string",
- "email": "user@example.com"
}
Response samples
- 200
- default
Content type
application/json
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "name": "string",
- "email": "user@example.com"
}
List documents
query Parameters
limit | integer <int32> <= 100 Default: 20 How many documents to return at once (max 100) |
status | string Enum: "pending" "processed" "error" Filter by document status |
Responses
Response samples
- 200
- default
Content type
application/json
[- {
- "id": "string",
- "fileName": "string",
- "status": "string"
}
]
Run a specific workflow
path Parameters
workflowId required | string ID of the workflow to run |
Request Body schema: application/jsonoptional
Input data for the workflow
object
Responses
Request samples
- Payload
Content type
application/json
{ }
Response samples
- default
Content type
application/json
{- "code": 0,
- "message": "string"
}