POST api/v2/Languages
Request
URI Parameters
Body Parameters
LanguageInsert| 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.8760327Z",
"CreationUserId": 1,
"CreationDateTime": "2026-02-02T21:07:40.8760327Z"
}
text/html
Sample:
{"Id":1,"Identification":"sample string 2","CultureCode":"sample string 3","Active":true,"ActivationUserId":1,"ActivationDateTime":"2026-02-02T21:07:40.8760327Z","CreationUserId":1,"CreationDateTime":"2026-02-02T21:07:40.8760327Z"}