Contacts and Memory stores: new API endpoints
Contacts
New endpoints added:
| Endpoint | Title |
|---|---|
| POST /contacts | Create a contact |
| GET /contacts | List contacts |
| GET /contacts/:contact_id | Get a contact |
| PATCH /contacts/:contact_id | Update a contact |
| DELETE /v2/contacts/:contact_id | Delete a contact |
Memory stores
New endpoints added:
| Endpoint | Title |
|---|---|
| POST /memory_stores | Create a memory store |
| GET /memory_stores | List memory stores |
| PATCH /memory_stores | Update a memory store |
| DELETE /memory_stores | Delete a memory store |
| GET /memory_stores/:memory_store_id | Get a memory store |
| POST /memory_stores/:memory_store_id/assistants/:assistant_id/attach | Attach a memory store to an agent |
| POST /memory_stores/:memory_store_id/assistants/:assistant_id/detach | Detach a memory store from an agent |
| GET /memory_stores/:memory_store_id/contacts/:contact_id/memory_data | Get data for a specific memory store and contact |
| POST /memory_stores/:memory_store_id/contacts/:contact_id/attach | Attach a contact to a memory store |
| POST /memory_stores/:memory_store_id/contacts/:contact_id/detach | Detach a contact from a memory store |