API reference
Files
Read and write the files inside a project from your own code.
Every Wemob project is a collection of files. These endpoints let you list them, read their contents, make changes, and add new ones. Edits you make here show up in the Studio just like edits you'd make yourself in the Code tab.
List files#
| Method | Path | Returns |
|---|---|---|
| GET | /v2/apps/{appId}/files/{platform} | An array of file objects with paths and contents |
Create a file#
| Method | Path | Body |
|---|---|---|
| POST | /v2/apps/{appId}/files | { file_path, content, file_type } |
Update a file#
| Method | Path | Body |
|---|---|---|
| PUT | /v2/apps/{appId}/files/{fileId} | { content } |
Tip
File updates are live — the preview in the Studio will refresh with the new content within a moment. No deploy needed.
Delete a file#
| Method | Path | Returns |
|---|---|---|
| DELETE | /v2/apps/{appId}/files/{fileId} | A success confirmation |
Last updated · April 11, 2026
