floor_id.200 OK response means the content has been accepted and queued, not immediately retrievable./agent/memory/queryuser_idapp_id identifies the application contextmultipart/form-data| Field | Type | Required | Description |
|---|---|---|---|
files | file[] | Optional | Media files to attach to the content. Multiple files may be uploaded. |
jpg, pngmp3pdfmp4| Field | Type | Required | Description |
|---|---|---|---|
input_info | string (JSON) | Yes | JSON string containing metadata and textual content for the post. |
input_info Structure{
"floor_id": "my_floor",
"block_id": "17845683456",
"block_type": "1",
"user_id": "145623907625",
"title": "My note",
"description": "Things I should remember"
}| Field | Type | Required | Description |
|---|---|---|---|
floor_id | string | Yes | Identifier of the user’s floor (POD) where the content will be stored. |
block_id | string | Optional | Identifier of the block within the floor used to group or categorize content. |
block_type | string | Optional | Logical category of the content (e.g., 0 for post, 1 for forum). Used for routing and UI organization. |
user_id | string | Yes | Unique identifier of the user posting the content. |
title | string | Optional | Short title or heading for the content. |
description | string | Yes | Main textual content to be stored and embedded. |
app_id | string | Optional | Identifier of the calling application context. |
title and description) is ingested.A successful response indicates acceptance, not immediate availability.
floor_id, user_id, description)200 OK response means the request was successfully queued.Stores user-generated text and media into a personal POD, embeds it asynchronously, and makes it available for semantic and conversational querying.
curl --location --request POST 'https://appfloor.in/api/memory/events' \
--header 'Authorization: Bearer <token>' \
--form 'files=@""' \
--form 'input_info="{ \"floor_id\": \"my_floor\", \"block_id\": \"17845683456\", \"user_id\": \"145623907625\", \"title\": \"My floor\", \"description\": \"My floor details\"}"' \
--form 'app_id="165434879028"' \
--form 'user_id=""'{
"success": "Sent to the queue"
}