For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Welcome
  • API Reference
      • GETListar Esquemas de Salida Estructurada
      • POSTCrear Esquema
      • GETObtener Esquema
      • DELEliminar Esquema
      • PATCHActualizar Esquema
Logo
API ReferenceStructured Output

Actualizar Esquema

PATCH
https://nebrijaai.com/api/v1/schemas/:id
PATCH
/api/v1/schemas/:id
$curl -X PATCH https://nebrijaai.com/api/v1/schemas/id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{}'
200Updated
1{
2 "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
3 "name": "Customer Satisfaction Schema",
4 "type": "Free",
5 "description": "Schema to extract customer satisfaction data from call transcripts.",
6 "properties": {},
7 "isLocked": true,
8 "createdAt": "2024-01-15T09:30:00Z",
9 "updatedAt": "2024-01-15T09:30:00Z"
10}
Was this page helpful?
Previous

Listar Herramientas

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

idstringRequiredformat: "uuid"

Request

This endpoint expects an object.

Response

Esquema actualizado.