Update language
Updates a language's code, name, or emoji across all file translations. Requires `canEditTranslations` permission.
Supabase Auth session cookie. Automatically set when users log in via the Movabase web app.
In: cookie
Path Parameters
Project ID
uuidRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
curl -X PATCH "https://example.com/api/projects/497f6eca-6276-4993-bfeb-53cbbbba6f08/languages" \ -H "Content-Type: application/json" \ -d '{ "currentCode": "string" }'{ "languages": [ { "code": "string", "name": "string", "emoji": "string" } ]}Sync translations from Bitbucket
Syncs translations FROM the Bitbucket repository TO the database. Returns a Server-Sent Events (SSE) stream with real-time progress. Auto-detects language from file/folder structure. Creates file_translation records if needed. Supports JSON, PO, Android XML, and iOS Strings formats. Requires `canEditTranslations` permission.
Update project
Updates project settings including name, description, emoji, and linked project configuration. Linked project validation ensures same organization, no self-reference, and no 2-way cycles. Requires `canEditProjects` permission.