> For the complete documentation index, see [llms.txt](https://developers.myscreators.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.myscreators.com/referencia-de-la-api/proyectos.md).

# Proyectos

Listar, crear, actualizar, eliminar y buscar proyectos.

Operaciones para gestionar proyectos.

## GET /projects/

> Listar proyectos

```json
{"openapi":"3.0.3","info":{"title":"M&S Creators — CRM API","version":"1.1.2"},"tags":[{"name":"Proyectos","description":"Gestión de proyectos: listar, crear, actualizar, eliminar y buscar."}],"servers":[{"url":"https://crm.myscreators.com/index.php/api","description":"Producción"}],"security":[{"ApiToken":[]}],"components":{"securitySchemes":{"ApiToken":{"type":"apiKey","in":"header","name":"authtoken","description":"Token de instalación de M&S. Envíalo en el encabezado `authtoken` de cada solicitud."}},"schemas":{"Project":{"type":"object","description":"Proyecto del CRM.","properties":{"id":{"type":"integer"},"title":{"type":"string"},"description":{"type":"string"},"start_date":{"type":"string","nullable":true},"deadline":{"type":"string","nullable":true},"client_id":{"type":"string"},"status":{"type":"string"},"company_name":{"type":"string"},"currency_symbol":{"type":"string"}}},"ApiMessage":{"type":"object","description":"Respuesta genérica de estado para operaciones de escritura y borrado.","properties":{"status":{"type":"boolean","description":"`true` si la operación fue exitosa."},"message":{"type":"string","description":"Mensaje legible del resultado."}}}},"responses":{"Unauthorized":{"description":"Token ausente o inválido.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}}}},"paths":{"/projects/":{"get":{"tags":["Proyectos"],"operationId":"listProjects","summary":"Listar proyectos","responses":{"200":{"description":"Proyectos.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Project"}}}}},"401":{"$ref":"#/components/responses/Unauthorized"}}}}}}
```

## POST /projects

> Crear proyecto

```json
{"openapi":"3.0.3","info":{"title":"M&S Creators — CRM API","version":"1.1.2"},"tags":[{"name":"Proyectos","description":"Gestión de proyectos: listar, crear, actualizar, eliminar y buscar."}],"servers":[{"url":"https://crm.myscreators.com/index.php/api","description":"Producción"}],"security":[{"ApiToken":[]}],"components":{"securitySchemes":{"ApiToken":{"type":"apiKey","in":"header","name":"authtoken","description":"Token de instalación de M&S. Envíalo en el encabezado `authtoken` de cada solicitud."}},"schemas":{"ProjectCreate":{"type":"object","description":"Datos para crear un proyecto.","required":["title","client_id","start_date"],"properties":{"title":{"type":"string"},"client_id":{"type":"string"},"start_date":{"type":"string","format":"date"},"description":{"type":"string"}}},"ApiMessage":{"type":"object","description":"Respuesta genérica de estado para operaciones de escritura y borrado.","properties":{"status":{"type":"boolean","description":"`true` si la operación fue exitosa."},"message":{"type":"string","description":"Mensaje legible del resultado."}}}},"responses":{"Unauthorized":{"description":"Token ausente o inválido.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}}}},"paths":{"/projects":{"post":{"tags":["Proyectos"],"operationId":"createProject","summary":"Crear proyecto","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/ProjectCreate"}}}},"responses":{"200":{"description":"Proyecto creado.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}},"401":{"$ref":"#/components/responses/Unauthorized"}}}}}}
```

## PUT /projects/{id}

> Actualizar proyecto

```json
{"openapi":"3.0.3","info":{"title":"M&S Creators — CRM API","version":"1.1.2"},"tags":[{"name":"Proyectos","description":"Gestión de proyectos: listar, crear, actualizar, eliminar y buscar."}],"servers":[{"url":"https://crm.myscreators.com/index.php/api","description":"Producción"}],"security":[{"ApiToken":[]}],"components":{"securitySchemes":{"ApiToken":{"type":"apiKey","in":"header","name":"authtoken","description":"Token de instalación de M&S. Envíalo en el encabezado `authtoken` de cada solicitud."}},"schemas":{"ProjectUpdate":{"description":"Datos para actualizar un proyecto (mismos campos que la creación).","allOf":[{"$ref":"#/components/schemas/ProjectCreate"}]},"ProjectCreate":{"type":"object","description":"Datos para crear un proyecto.","required":["title","client_id","start_date"],"properties":{"title":{"type":"string"},"client_id":{"type":"string"},"start_date":{"type":"string","format":"date"},"description":{"type":"string"}}},"ApiMessage":{"type":"object","description":"Respuesta genérica de estado para operaciones de escritura y borrado.","properties":{"status":{"type":"boolean","description":"`true` si la operación fue exitosa."},"message":{"type":"string","description":"Mensaje legible del resultado."}}}},"responses":{"Unauthorized":{"description":"Token ausente o inválido.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}},"NotFound":{"description":"Recurso no encontrado.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}}}},"paths":{"/projects/{id}":{"put":{"tags":["Proyectos"],"operationId":"updateProject","summary":"Actualizar proyecto","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"integer"},"description":"Identificador del recurso."}],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/ProjectUpdate"}}}},"responses":{"200":{"description":"Proyecto actualizado.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}},"401":{"$ref":"#/components/responses/Unauthorized"},"404":{"$ref":"#/components/responses/NotFound"}}}}}}
```

## DELETE /projects/{id}

> Eliminar proyecto

```json
{"openapi":"3.0.3","info":{"title":"M&S Creators — CRM API","version":"1.1.2"},"tags":[{"name":"Proyectos","description":"Gestión de proyectos: listar, crear, actualizar, eliminar y buscar."}],"servers":[{"url":"https://crm.myscreators.com/index.php/api","description":"Producción"}],"security":[{"ApiToken":[]}],"components":{"securitySchemes":{"ApiToken":{"type":"apiKey","in":"header","name":"authtoken","description":"Token de instalación de M&S. Envíalo en el encabezado `authtoken` de cada solicitud."}},"schemas":{"ApiMessage":{"type":"object","description":"Respuesta genérica de estado para operaciones de escritura y borrado.","properties":{"status":{"type":"boolean","description":"`true` si la operación fue exitosa."},"message":{"type":"string","description":"Mensaje legible del resultado."}}}},"responses":{"Unauthorized":{"description":"Token ausente o inválido.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}},"NotFound":{"description":"Recurso no encontrado.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}}}},"paths":{"/projects/{id}":{"delete":{"tags":["Proyectos"],"operationId":"deleteProject","summary":"Eliminar proyecto","parameters":[{"in":"path","name":"id","required":true,"schema":{"type":"integer"},"description":"Identificador del recurso."}],"responses":{"200":{"description":"Proyecto eliminado.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}},"401":{"$ref":"#/components/responses/Unauthorized"},"404":{"$ref":"#/components/responses/NotFound"}}}}}}
```

## GET /projects/search/{keysearch}

> Buscar proyectos

```json
{"openapi":"3.0.3","info":{"title":"M&S Creators — CRM API","version":"1.1.2"},"tags":[{"name":"Proyectos","description":"Gestión de proyectos: listar, crear, actualizar, eliminar y buscar."}],"servers":[{"url":"https://crm.myscreators.com/index.php/api","description":"Producción"}],"security":[{"ApiToken":[]}],"components":{"securitySchemes":{"ApiToken":{"type":"apiKey","in":"header","name":"authtoken","description":"Token de instalación de M&S. Envíalo en el encabezado `authtoken` de cada solicitud."}},"schemas":{"ProjectSearchItem":{"type":"object","description":"Coincidencia de proyecto en una búsqueda.","properties":{"id":{"type":"integer"},"title":{"type":"string"},"status":{"type":"string"}}},"ApiMessage":{"type":"object","description":"Respuesta genérica de estado para operaciones de escritura y borrado.","properties":{"status":{"type":"boolean","description":"`true` si la operación fue exitosa."},"message":{"type":"string","description":"Mensaje legible del resultado."}}}},"responses":{"Unauthorized":{"description":"Token ausente o inválido.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiMessage"}}}}}},"paths":{"/projects/search/{keysearch}":{"get":{"tags":["Proyectos"],"operationId":"searchProjects","summary":"Buscar proyectos","parameters":[{"in":"path","name":"keysearch","required":true,"schema":{"type":"string"},"description":"Texto a buscar."}],"responses":{"200":{"description":"Coincidencias de proyectos.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProjectSearchItem"}}}}},"401":{"$ref":"#/components/responses/Unauthorized"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developers.myscreators.com/referencia-de-la-api/proyectos.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
