GET api/languagecaptions/{languageid}/{captionid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
languageid

integer

Required

captionid

integer

Required

Body Parameters

None.

Response Information

Resource Description

LanguageCaption
NameDescriptionTypeAdditional information
LanguageId

integer

None.

LanguageDescription

string

None.

CaptionId

integer

None.

Description

string

None.

Exists

boolean

None.

PropertyId

integer

None.

Message

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "LanguageId": 1,
  "LanguageDescription": "sample string 2",
  "CaptionId": 3,
  "Description": "sample string 4",
  "Exists": true,
  "PropertyId": 6,
  "Message": "QEA="
}

application/xml, text/xml

Sample:
<LanguageCaption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models">
  <CaptionId>3</CaptionId>
  <Description>sample string 4</Description>
  <Exists>true</Exists>
  <LanguageDescription>sample string 2</LanguageDescription>
  <LanguageId>1</LanguageId>
  <Message>QEA=</Message>
  <PropertyId>6</PropertyId>
</LanguageCaption>