GET api/KeywordAPI/GetByItt_id?itt_id={itt_id}

Anfrageinformationen

URI Parameter

NameBeschreibungTypZusätzliche Informationen
itt_id

integer

Required

Body Parameter

Keine.

Antwortinformationen

Ressourcenbeschreibung

Collection of Keyword
NameBeschreibungTypZusätzliche Informationen
itt_kid

integer

None.

itt_id

integer

None.

keywordName

string

None.

specific

boolean

None.

Antwortformate

application/json, text/json

Sample:
[
  {
    "itt_kid": 1,
    "itt_id": 2,
    "keywordName": "sample string 3",
    "specific": true
  },
  {
    "itt_kid": 1,
    "itt_id": 2,
    "keywordName": "sample string 3",
    "specific": true
  }
]

application/xml, text/xml

Sample:
<Keywords xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:d1p1="http://Orchestration.Keyword" xmlns="http://schemas.datacontract.org/2004/07/TaggingService.API.Keyword">
  <Keyword>
    <d1p1:itt_kid>1</d1p1:itt_kid>
    <d1p1:itt_id>2</d1p1:itt_id>
    <d1p1:keywordName>sample string 3</d1p1:keywordName>
    <d1p1:specific>true</d1p1:specific>
  </Keyword>
  <Keyword>
    <d1p1:itt_kid>1</d1p1:itt_kid>
    <d1p1:itt_id>2</d1p1:itt_id>
    <d1p1:keywordName>sample string 3</d1p1:keywordName>
    <d1p1:specific>true</d1p1:specific>
  </Keyword>
</Keywords>