PUT api/v2/Languages/{languageId}
Request
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| languageId | integer |
Required |
Body Parameters
LanguageUpdate| Name | Description | Type | Additional information |
|---|---|---|---|
| Identification | string |
Required String length: inclusive between 0 and 250 |
|
| CultureCode | string |
Required String length: inclusive between 0 and 15 |
|
| Active | boolean |
Request Formats
application/json, text/json
Sample:
{
"Identification": "sample string 1",
"CultureCode": "sample string 2",
"Active": true
}
text/html
Sample:
{"Identification":"sample string 1","CultureCode":"sample string 2","Active":true}
Response
LanguageDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| CreationUserId | integer | ||
| CreationDateTime | date | ||
| Id | integer | ||
| Identification | string | ||
| CultureCode | string | ||
| Active | boolean | ||
| ActivationUserId | integer | ||
| ActivationDateTime | date |
Response Format
application/json, text/json
Sample:
{
"Id": 1,
"Identification": "sample string 2",
"CultureCode": "sample string 3",
"Active": true,
"ActivationUserId": 1,
"ActivationDateTime": "2026-02-02T21:07:40.9860408Z",
"CreationUserId": 1,
"CreationDateTime": "2026-02-02T21:07:40.9860408Z"
}
text/html
Sample:
{"Id":1,"Identification":"sample string 2","CultureCode":"sample string 3","Active":true,"ActivationUserId":1,"ActivationDateTime":"2026-02-02T21:07:40.9860408Z","CreationUserId":1,"CreationDateTime":"2026-02-02T21:07:40.9860408Z"}