-
Notifications
You must be signed in to change notification settings - Fork 0
Language
Francis Pion edited this page Jan 14, 2025
·
13 revisions
ℹ️ Defines languages in which content can be translated (a content translation is called a "content locale").
Name | Type | Cardinality | Description |
---|---|---|---|
IsDefault | Boolean | 1..1 | 🗝️ (true) 🚧 |
Locale | Locale | 1..1 | 🗝️ 🚧 CultureInfo |
If we can define languages, we can delete them or change their CultureInfo, which updates all associated content locales in a single operation.
❓
❓
❓
Status | Method | URL | Description |
---|---|---|---|
0% | DELETE | /api/languages/{id} | Deletes a language. |
✅ | GET | /api/languages | Searches languages. |
✅ | GET | /api/languages/default | Reads the default language. |
✅ | GET | /api/languages/locale:{locale} | Reads a language by locale code. |
✅ | GET | /api/languages/{id} | Reads a language by ID. |
✅ | PATCH | /api/languages/{id} | Updates a language. |
✅ | PATCH | /api/languages/{id}/default | Sets the default language. |
✅ | POST | /api/languages | Creates a new language. |
✅ | PUT | /api/languages/{id} | Creates or replaces a language. |